home *** CD-ROM | disk | FTP | other *** search
/ Developer CD Series 1997 January: Mac OS SDK / Dev.CD Jan 97 SDK2.toast / Development Kits (Disc 2) / OpenDoc Development Framework / ODFDev / Form / Sources / Menus.fr < prev    next >
Encoding:
Text File  |  1996-09-17  |  908 b   |  44 lines  |  [TEXT/MPS ]

  1. //    File:        FormStr.fr
  2. //
  3. //    Contains:    Common (Platform independent) resources for Form part
  4. //
  5. //    Copyright:    © 1995 by Apple Computer, Inc., all rights reserved.
  6.  
  7. #ifndef FWRESFIL_K
  8. #include "FWResFil.k"
  9. #endif
  10.  
  11. #ifndef DEFINES_K
  12. #include "Defines.k"
  13. #endif
  14.  
  15. #ifndef FWMENUS_FR
  16. #include "FWMenus.fr"
  17. #endif
  18.  
  19. //----------------------------------------------------------------------------
  20. //    Menus
  21. //----------------------------------------------------------------------------
  22.  
  23. resource FW_RMenuBar(kMenuBar)
  24. {
  25.     "About ODFForm...",
  26.  
  27.     {
  28.         FW_RPullDownMenu
  29.         (
  30.             "Form"
  31.             {
  32.                 FW_RTextItem(cResetFormCommand, '1', "Reset Form")
  33. #if FW_PPOB_VIEWS
  34.                 , FW_RSeparatorItem(),
  35.                 FW_RTextItem(cReloadPPobViews, FW_kNoKeyEquivalent, "Reload PPob Views")                
  36. #elif FW_MACAPP_VIEWS
  37.                 , FW_RSeparatorItem(),
  38.                 FW_RTextItem(cReloadMacAppViews, FW_kNoKeyEquivalent, "Reload MacApp Views")                
  39. #endif
  40.             }
  41.         )
  42.     }
  43. };
  44.